home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCMania 36
/
PCMania CD36_1.iso
/
pcmania
/
treal36
/
3dengine
/
font.inc
< prev
next >
Wrap
Text File
|
1993-11-17
|
1KB
|
56 lines
; externals from font routine
extrn tstring:near
extrn string:near
extrn initfont:near
extrn put_at_top:near
extrn number_eax:dword
; screen text macros for font routines
newtext macro x,y,col
db -1
dw x,y
db col
endm
border macro x1,y1,x2,y2,col
db -2
dw x1,y1,x2,y2,col
endm
fillarea macro x1,y1,x2,y2,col
db -3
dw x1,y1,x2,y2,col
endm
hole macro x1,y1,x2,y2,col
db -4
dw x1,y1,x2,y2,col
endm
lowercase macro
db -5
endm
uppercase macro
db -6
endm
steelbox macro x1,y1,x2,y2,col,step
db -7
dw x1,y1,x2,y2,col,step
endm
repeatbit macro bitmaploc,x1,y1,x2,y2
db -8
dd bitmaploc
dw x1,y1,x2,y2,col
endm
textend macro
db 0
endm